home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / SAT 2.3.7 / TCL and demo / SATTest / SATTestGlobals.p < prev    next >
Encoding:
Text File  |  1995-12-18  |  419 b   |  23 lines  |  [TEXT/PJMM]

  1. {****************************************************}
  2. {}
  3. {        SATTestGlobals.p                                                                                                                                                                                        }
  4. {}
  5. {        Global variables for SATTest which needed to be available to the sprites also.     }
  6. {}
  7. {****************************************************}
  8.  
  9.  
  10. unit SATTestGlobals;
  11.  
  12. interface
  13.  
  14.     const
  15.         kindPlayer = 1;
  16.         kindTarget = -1;
  17.  
  18.     var
  19.         gCatchSound: Handle;
  20.  
  21. implementation
  22.  
  23. end. { SATTestGlobals }